home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmSelectComputer
- BorderStyle = 3 'Fixed Dialog
- Caption = "Select Computer"
- ClientHeight = 930
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 2985
- Icon = "frmSelectComputer.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 930
- ScaleWidth = 2985
- ShowInTaskbar = 0 'False
- StartUpPosition = 1 'CenterOwner
- Begin VB.CommandButton cmdCancel
- Cancel = -1 'True
- Caption = "Cancel"
- Height = 375
- Left = 1920
- TabIndex = 2
- Top = 480
- Width = 975
- End
- Begin VB.CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 375
- Left = 720
- TabIndex = 1
- Top = 480
- Width = 975
- End
- Begin VB.TextBox txtComputerName
- Height = 285
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 2775
- End
- Attribute VB_Name = "frmSelectComputer"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- '****************************************************************************************************
- ' Copyright (c) Key Technology Pty Ltd 1999, All Rights Reserved.
- ' Web site: http://www.keytech.com.au Email: info@keytech.com.au
- '****************************************************************************************************
- Option Explicit
- Private mComputerName As String
- Private Sub cmdCancel_Click()
- Unload Me
- End Sub
- Private Sub cmdOK_Click()
- mComputerName = txtComputerName
- Unload Me
- End Sub
- Private Sub Form_Load()
- txtComputerName = mComputerName
- txtComputerName.SelLength = Len(txtComputerName)
- End Sub
- Public Property Let ComputerName(ComputerName As String)
- mComputerName = ComputerName
- End Property
- Public Property Get ComputerName() As String
- ComputerName = mComputerName
- End Property
-